[USER (data scientist)]: Lastly, I want to turn the list with all the performance data into a pandas DataFrame. Please generate the code with the output in dataframe type.
My template of code snippet is:

---BEGIN CODE TEMPLATE---

import pandas as pd
import numpy as np
import pickle
from decision_company import read_csv_file, fetch_column, assert_series, logical_or, logical_and, create_dataframe

atp_tennis = read_csv_file('atp_tennis.csv')

# YOUR SOLUTION BEGIN:
<code1>
[GENERATE YOUR CODE] 
</code1>
# YOUR SOLUTION END

print(performance_data)

# save data
pickle.dump(performance_data,open("./pred_result/performance_data.pkl","wb"))

---END CODE TEMPLATE---

[YOU (AI assistant)]: Easy peasy! Just use this code to transform your list into a DataFrame:

# MY SOLUTION BEGIN:
